home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / contrib / libgrx / pcx / pcxdump.h < prev   
Encoding:
C/C++ Source or Header  |  1994-03-31  |  587 b   |  14 lines

  1. /*
  2.  * PCX DUMP routine. Always dumps whole screen (you must be using GRX and
  3.  * be in a graphics mode. The GRX mode (16, 256 colors, etc..) does not
  4.  * matter as long as the number of different colors on the screen does not
  5.  * exceed 16. The 'pcxdump' routine takes one argument: the name of the PCX
  6.  * file. If this is NULL, an internally generated name is used. It returns
  7.  * an integer indicating completion status: 0 = failed, else success. The
  8.  * output is put into sequentially numbered PCX files starting with
  9.  * "DUMP0000.PCX"
  10.  */
  11.  
  12. extern int pcxdump(char *fname);
  13.  
  14.